ArcGIS Procedural Runtime  3.2.10650
CTString.h
1 /*
2  COPYRIGHT (c) 2012-2024 Esri R&D Center Zurich
3  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
4  Unpublished material - all rights reserved under the
5  Copyright Laws of the United States and applicable international
6  laws, treaties, and conventions.
7 
8  For additional information, contact:
9  Environmental Systems Research Institute, Inc.
10  Attn: Contracts and Legal Services Department
11  380 New York Street
12  Redlands, California, 92373
13  USA
14 
15  email: contracts@esri.com
16 */
17 
18 #ifndef SRC_PRTX_CTSTRING_H_
19 #define SRC_PRTX_CTSTRING_H_
20 
21 #include "prtx/prtx.h"
22 #include "prtx/Content.h"
23 
24 #include <vector>
25 #include <memory>
26 #include <string>
27 
28 namespace prtx {
29 
30 
31 class CTString;
32 typedef std::shared_ptr<CTString> CTStringPtr;
33 typedef std::vector<CTStringPtr> CTStringPtrVector;
34 
35 class PRTX_EXPORTS_API CTString : public Content {
36 public:
37  virtual ~CTString();
38 
39  virtual std::shared_ptr<const std::wstring> getString() const = 0;
40 
41 protected:
42  CTString();
43 };
44 
45 
46 } /* namespace prtx */
47 
48 
49 
50 
51 
52 #endif /* SRC_PRTX_STRING_H_ */
Definition: Content.h:40
The Procedural Runtime eXtension namespace. The prtx namespace contains the tools to extend the Proce...
Definition: AnnotationBuilder.h:35
Definition: CTString.h:35