1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements.  See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License.  You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 /*
19  * $Id$
20  */
21 
22 #include <xercesc/framework/psvi/XSObject.hpp>
23 #include <xercesc/framework/psvi/XSModel.hpp>
24 
25 XERCES_CPP_NAMESPACE_BEGIN
26 
27 // ---------------------------------------------------------------------------
28 //  XSObject: Constructors and Destructor
29 // ---------------------------------------------------------------------------
XSObject(XSConstants::COMPONENT_TYPE compType,XSModel * const xsModel,MemoryManager * const manager)30 XSObject::XSObject(XSConstants::COMPONENT_TYPE compType,
31                    XSModel* const xsModel,
32                    MemoryManager* const manager)
33     : fComponentType(compType)
34     , fXSModel(xsModel)
35     , fMemoryManager(manager)
36     , fId(0)
37 {
38     if (xsModel)
39     {
40         xsModel->addComponentToIdVector(this, compType-1);
41     }
42 }
43 
~XSObject()44 XSObject::~XSObject()
45 {
46 }
47 
48 // ---------------------------------------------------------------------------
49 //  XSObject: Virtual interface methods
50 // ---------------------------------------------------------------------------
getName() const51 const XMLCh *XSObject::getName() const
52 {
53     return 0;
54 }
55 
getNamespace() const56 const XMLCh *XSObject::getNamespace() const
57 {
58     return 0;
59 }
60 
getNamespaceItem()61 XSNamespaceItem *XSObject::getNamespaceItem()
62 {
63     return 0;
64 }
65 
getId() const66 XMLSize_t XSObject::getId() const
67 {
68     return fId;
69 }
70 
setId(XMLSize_t id)71 void XSObject::setId(XMLSize_t id)
72 {
73     fId = id;
74 }
75 
76 XERCES_CPP_NAMESPACE_END
77