/usr/include/vtk-7.1/vtkJavaScriptDataWriter.h is in libvtk7-dev 7.1.1+dfsg1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | /*=========================================================================
Program: ParaView
Module: vtkJavaScriptDataWriter.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright 2009 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
/**
* @class vtkJavaScriptDataWriter
* @brief A Javascript data writer for vtkTable
* Writes a vtkTable into a Javascript data format.
*/
#ifndef vtkJavaScriptDataWriter_h
#define vtkJavaScriptDataWriter_h
#include "vtkIOCoreModule.h" // For export macro
#include "vtkWriter.h"
class vtkStdString;
class vtkTable;
class VTKIOCORE_EXPORT vtkJavaScriptDataWriter : public vtkWriter
{
public:
static vtkJavaScriptDataWriter* New();
vtkTypeMacro(vtkJavaScriptDataWriter, vtkWriter);
void PrintSelf(ostream& os, vtkIndent indent);
//@{
/**
* Get/set the name of the Javascript variable that the dataset will be assigned to.
* The default value is "data", so the javascript code generated by the filter will
* look like this: "var data = [ ... ];". If VariableName is set to NULL, then no
* assignment statement will be generated (i.e., only "[ ... ];" will be generated).
*/
vtkSetStringMacro(VariableName);
vtkGetStringMacro(VariableName);
//@}
//@{
/**
* Get/Set the filename for the file.
*/
vtkSetStringMacro(FileName);
vtkGetStringMacro(FileName);
//@}
//@{
/**
* Get/Set the whether or not to include field names
* When field names are on you will get data output
* that looks like this:
* var data=[
* {foo:3,time:"2009-11-04 16:09:42",bar:1 },
* {foo:5,time:"2009-11-04 16:11:22",bar:0 },
* without field names the data will be an array
* of arrays like this:
* var data=[
* [3,"2009-11-04 16:09:42",1],
* [5,"2009-11-04 16:11:22",0],
* Default is ON (true)
*/
vtkSetMacro(IncludeFieldNames, bool);
vtkGetMacro(IncludeFieldNames, bool);
//@}
// Get/Set the OutputStream for writing output.
void SetOutputStream(ostream *my_stream);
ostream* GetOutputStream();
protected:
vtkJavaScriptDataWriter();
~vtkJavaScriptDataWriter();
ofstream* OpenFile();
virtual void WriteData();
virtual void WriteTable(vtkTable* table, ostream *stream_ptr);
// see algorithm for more info.
// This writer takes in vtkTable.
virtual int FillInputPortInformation(int port, vtkInformation* info);
char* VariableName;
char* FileName;
bool IncludeFieldNames;
ostream* OutputStream;
private:
vtkJavaScriptDataWriter(const vtkJavaScriptDataWriter&) VTK_DELETE_FUNCTION;
void operator=(const vtkJavaScriptDataWriter&) VTK_DELETE_FUNCTION;
};
#endif
|