Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/plugin/PluginUtil.h

Issue 10825021: Move settings page into the application directory (Closed)
Patch Set: Created June 3, 2013, 11:40 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 #pragma once 1 #pragma once
2 #include <string>
2 3
3 const CString& DllDir(); 4 class BString
4 const CString& HtmlDir(); 5 {
5 const CString& UserSettingsFileUrl(); 6 public:
6 CString FileUrl(const CString& url); 7 BString(const std::wstring& value);
8 ~BString();
Felix Dahlke 2013/06/04 07:08:39 Needs a custom copy constructor and copy assignmen
Wladimir Palant 2013/06/04 09:17:29 Done
9 operator BSTR();
10 private:
11 BSTR value;
12 };
13
14 std::wstring DllDir();
15 std::wstring UserSettingsFileUrl();
16 std::wstring FileUrl(const std::wstring& url);
OLDNEW

Powered by Google App Engine
This is Rietveld