View on GitHub

Vistle

Distributed Data-parallel Scientific Visualization in VR

empty.h
Go to the documentation of this file.
1#ifndef EMPTY_H
2#define EMPTY_H
3
4#include "shmname.h"
5#include "object.h"
6#include "archives_config.h"
7#include "shm_obj_ref.h"
8#include "export.h"
9
10namespace vistle {
11
12class V_COREEXPORT Empty: public Object {
14
15public:
16 typedef Object Base;
17
19 Data(const std::string &name, const Meta &m = Meta());
21 static Data *create(const std::string &name = "");
23};
24
25} // namespace vistle
26#endif
Definition: empty.h:12
V_DATA_END(Empty)
V_DATA_BEGIN(Empty)
static Data * create(const std::string &name="")
Object Base
Definition: empty.h:16
Data(const std::string &name, const Meta &m=Meta())
Definition: objectmeta.h:16
Definition: object.h:58
#define V_COREEXPORT
Definition: export.h:9
Definition: allobjects.cpp:30
#define V_OBJECT(ObjType)
declare a new Object type
Definition: object.h:381
Definition: object.h:233