ASPiK SDK
linuxstring.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 #pragma once
6 
7 #include "../iplatformstring.h"
8 
9 //------------------------------------------------------------------------
10 namespace VSTGUI {
11 
12 //------------------------------------------------------------------------
13 class LinuxString : public IPlatformString
14 {
15 public:
16  LinuxString (UTF8StringPtr utf8String);
17  virtual void setUTF8String (UTF8StringPtr utf8String) override;
18 
19  const std::string& get () const { return str; }
20 private:
21  std::string str;
22 };
23 
24 //------------------------------------------------------------------------
25 }
Definition: customcontrols.cpp:8
Definition: linuxstring.h:13