Coin Logo http://www.sim.no/
http://www.coin3d.org/

ScXMLObject.h
1#ifndef COIN_SCXMLOBJECT_H
2#define COIN_SCXMLOBJECT_H
3
4/**************************************************************************\
5 *
6 * This file is part of the Coin 3D visualization library.
7 * Copyright (C) by Kongsberg Oil & Gas Technologies.
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * ("GPL") version 2 as published by the Free Software Foundation.
12 * See the file LICENSE.GPL at the root directory of this source
13 * distribution for additional information about the GNU GPL.
14 *
15 * For using Coin with software that can not be combined with the GNU
16 * GPL, and for taking advantage of the additional benefits of our
17 * support services, please contact Kongsberg Oil & Gas Technologies
18 * about acquiring a Coin Professional Edition License.
19 *
20 * See http://www.coin3d.org/ for more information.
21 *
22 * Kongsberg Oil & Gas Technologies, Bygdoy Alle 5, 0257 Oslo, NORWAY.
23 * http://www.sim.no/ sales@sim.no coin-support@coin3d.org
24 *
25\**************************************************************************/
26
27#include <Inventor/SbBasic.h>
28#include <Inventor/SoType.h>
29#include <Inventor/tools/SbPimplPtr.h>
30#include <Inventor/scxml/ScXMLSubObject.h>
31
32class COIN_DLL_API ScXMLObject {
33 SCXML_OBJECT_ABSTRACT_HEADER(ScXMLObject)
34
35public:
36 static void initClass(void);
37
38 ScXMLObject(void);
39 virtual ~ScXMLObject(void);
40
41 SbBool isOfType(SoType type) const;
42
43 void setXMLAttribute(const char * attribute, const char * value);
44 const char * getXMLAttribute(const char * attribute) const;
45
46 virtual SbBool handleXMLAttributes(void);
47
48 virtual void setContainer(ScXMLObject * container);
49 ScXMLObject * getContainer(void) const { return this->containerptr; }
50
51 SbBool isContainedIn(const ScXMLObject * object) const;
52
53protected:
54 static void registerClassType(const char * xmlns,
55 const char * classname, SoType type);
56 static void registerInvokeClassType(const char * xmlns,
57 const char * targettype,
58 const char * source, SoType type);
59
60private:
61 ScXMLObject * containerptr;
62
63private:
64 ScXMLObject(const ScXMLObject & rhs); // N/A
65 ScXMLObject & operator = (const ScXMLObject & rhs); // N/A
66
67 class PImpl;
68 SbPimplPtr<PImpl> pimpl;
69
70}; // ScXMLObject
71
72#endif // !COIN_SCXMLOBJECT_H
Base class for all SCXML objects.
Definition ScXMLObject.h:32
The SoType class is the basis for the run-time type system in Coin.
Definition SoType.h:50

Copyright © 1998-2010 by Kongsberg Oil & Gas Technologies. All rights reserved.

Generated on Wed Jul 17 2024 for Coin by Doxygen 1.12.0.