⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 file.h

📁 赫赫大名的 OGRE 游戏引擎
💻 H
字号:
#ifndef VRMLLIB_FILE_H
#define VRMLLIB_FILE_H

#include <map>
#include <set>
#include <string>

#include <vrmllib/node.h>

namespace vrmllib {

/// the contents of a VRML97 stream
/** contains all nodes that could be found in the stream
  * passed to the constructor.
  * the file owns the nodes and will delete them when when it is
  * destroyed. */
class file {
public:
	explicit file(std::istream &);
	~file();

	typedef std::map<std::string, node *> defs_t;
	typedef std::vector<node *> nodes_t;
	typedef std::vector<node *> roots_t;

	defs_t defs;
	nodes_t nodes;
	roots_t roots;
};

} // namespace vrmllib

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -