OSDN Git Service

Add .vs/ to .gitignore
[xkeymacs/xkeymacs.git] / xkeymacsdll / PipeName.h
1 #pragma once\r
2 \r
3 #include "tstring.h"\r
4 \r
5 class AFX_EXT_CLASS PipeName\r
6 {\r
7 public:\r
8         PipeName() {};\r
9         PipeName(LPCTSTR name) { Init(name); };\r
10         void Init(LPCTSTR name);\r
11         LPCTSTR GetName();\r
12 private:\r
13         tstring m_PipeName;\r
14 };\r
15 \r