You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by je...@apache.org on 2014/07/04 22:32:58 UTC

git commit: THRIFT-2524 Visual Studio project is missing TThreadedServer files Client: C++ Patch: Jens Geyer

Repository: thrift
Updated Branches:
  refs/heads/master 41312c7e9 -> 81b3a42c9


THRIFT-2524 Visual Studio project is missing TThreadedServer files
Client: C++
Patch: Jens Geyer


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/81b3a42c
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/81b3a42c
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/81b3a42c

Branch: refs/heads/master
Commit: 81b3a42c936a21c8396b3ba008e7637beae0f1e4
Parents: 41312c7
Author: Jens Geyer <je...@apache.org>
Authored: Fri Jul 4 22:30:14 2014 +0200
Committer: Jens Geyer <je...@apache.org>
Committed: Fri Jul 4 22:30:14 2014 +0200

----------------------------------------------------------------------
 lib/cpp/libthrift.vcxproj         | 2 ++
 lib/cpp/libthrift.vcxproj.filters | 6 ++++++
 2 files changed, 8 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/81b3a42c/lib/cpp/libthrift.vcxproj
----------------------------------------------------------------------
diff --git a/lib/cpp/libthrift.vcxproj b/lib/cpp/libthrift.vcxproj
index 053fde8..e6ae240 100644
--- a/lib/cpp/libthrift.vcxproj
+++ b/lib/cpp/libthrift.vcxproj
@@ -51,6 +51,7 @@
     <ClCompile Include="src\thrift\protocol\TMultiplexedProtocol.cpp"/>
     <ClCompile Include="src\thrift\server\TSimpleServer.cpp"/>
     <ClCompile Include="src\thrift\server\TThreadPoolServer.cpp"/>
+    <ClCompile Include="src\thrift\server\TThreadedServer.cpp"/>
     <ClCompile Include="src\thrift\TApplicationException.cpp"/>
     <ClCompile Include="src\thrift\Thrift.cpp"/>
     <ClCompile Include="src\thrift\transport\TBufferTransports.cpp"/>
@@ -105,6 +106,7 @@
     <ClInclude Include="src\thrift\server\TServer.h" />
     <ClInclude Include="src\thrift\server\TSimpleServer.h" />
     <ClInclude Include="src\thrift\server\TThreadPoolServer.h" />
+    <ClInclude Include="src\thrift\server\TThreadedServer.h" />
     <ClInclude Include="src\thrift\TApplicationException.h" />
     <ClInclude Include="src\thrift\Thrift.h" />
     <ClInclude Include="src\thrift\TProcessor.h" />

http://git-wip-us.apache.org/repos/asf/thrift/blob/81b3a42c/lib/cpp/libthrift.vcxproj.filters
----------------------------------------------------------------------
diff --git a/lib/cpp/libthrift.vcxproj.filters b/lib/cpp/libthrift.vcxproj.filters
index bfa8829..c38516b 100644
--- a/lib/cpp/libthrift.vcxproj.filters
+++ b/lib/cpp/libthrift.vcxproj.filters
@@ -69,6 +69,9 @@
     <ClCompile Include="src\thrift\server\TThreadPoolServer.cpp">
       <Filter>server</Filter>
     </ClCompile>
+    <ClCompile Include="src\thrift\server\TThreadedServer.cpp">
+      <Filter>server</Filter>
+    </ClCompile>
     <ClCompile Include="src\thrift\async\TAsyncChannel.cpp">
       <Filter>async</Filter>
     </ClCompile>
@@ -164,6 +167,9 @@
     <ClInclude Include="src\thrift\server\TThreadPoolServer.h">
       <Filter>server</Filter>
     </ClInclude>
+    <ClInclude Include="src\thrift\server\TThreadedServer.h">
+      <Filter>server</Filter>
+    </ClInclude>
     <ClInclude Include="src\thrift\async\TAsyncChannel.h">
       <Filter>async</Filter>
     </ClInclude>