Teamcenter C++ API Reference  2312
IResource.hxx
Go to the documentation of this file.
1 /*
2  Copyright 2022 Siemens Digital Industries Software
3  ==================================================
4  Copyright 2014.
5  Siemens Product Lifecycle Management Software Inc.
6  All Rights Reserved.
7  ==================================================
8  Copyright 2022 Siemens Digital Industries Software
9 */
10 
18 #ifndef LIS0LISFMWRK_IRESOURCE_HXX
19 #define LIS0LISFMWRK_IRESOURCE_HXX
20 
21 #include <string>
22 
23 #include <Lis0lisfmwrk/libLis0lisfmwrk_exports.h>
24 
33 namespace lis0lisfmwrk
34 {
35  class IResource;
36 }
37 
38 class LIS0LISFMWRK_API lis0lisfmwrk::IResource
39 {
40 public:
41 
43  IResource();
44 
46  virtual ~IResource();
47 
53  virtual void setAbout( const std::string& about ) = 0;
54 
59  virtual std::string getAbout() = 0;
60 
61 private:
62 
63 };
64 
67 #include <Lis0lisfmwrk/libLis0lisfmwrk_undef.h>
68 #endif