ASPiK SDK
iplatformstring.h
1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #ifndef __iplatformstring__
6 #define __iplatformstring__
7 
8 #include "../vstguibase.h"
9 
11 
12 namespace VSTGUI {
13 
14 //-----------------------------------------------------------------------------
15 class IPlatformString : public AtomicReferenceCounted
16 {
17 public:
18  static SharedPointer<IPlatformString> createWithUTF8String (UTF8StringPtr utf8String = nullptr);
19 
20  virtual void setUTF8String (UTF8StringPtr utf8String) = 0;
21 };
22 
23 } // namespace
24 
26 
27 #endif // __iplatformstring__
Definition: customcontrols.cpp:8