Tim Hughes
11 years ago
7 changed files with 135 additions and 8 deletions
@ -0,0 +1,27 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
||||
|
<ItemGroup> |
||||
|
<ClCompile Include="..\test\crypto.cpp" /> |
||||
|
<ClCompile Include="..\test\dagger.cpp" /> |
||||
|
<ClCompile Include="..\test\hexPrefix.cpp" /> |
||||
|
<ClCompile Include="..\test\main.cpp" /> |
||||
|
<ClCompile Include="..\test\peer.cpp" /> |
||||
|
<ClCompile Include="..\test\rlp.cpp" /> |
||||
|
<ClCompile Include="..\test\state.cpp" /> |
||||
|
<ClCompile Include="..\test\trie.cpp" /> |
||||
|
<ClCompile Include="..\test\vm.cpp" /> |
||||
|
<ClCompile Include="stdafx.cpp"> |
||||
|
<Filter>Windows</Filter> |
||||
|
</ClCompile> |
||||
|
</ItemGroup> |
||||
|
<ItemGroup> |
||||
|
<Filter Include="Windows"> |
||||
|
<UniqueIdentifier>{0acd7e2f-2594-4c13-94cb-3247045bdbfd}</UniqueIdentifier> |
||||
|
</Filter> |
||||
|
</ItemGroup> |
||||
|
<ItemGroup> |
||||
|
<ClInclude Include="stdafx.h"> |
||||
|
<Filter>Windows</Filter> |
||||
|
</ClInclude> |
||||
|
</ItemGroup> |
||||
|
</Project> |
@ -0,0 +1,21 @@ |
|||||
|
/*
|
||||
|
This file is part of cpp-ethereum. |
||||
|
|
||||
|
cpp-ethereum is free software: you can redistribute it and/or modify |
||||
|
it under the terms of the GNU General Public License as published by |
||||
|
the Free Software Foundation, either version 3 of the License, or |
||||
|
(at your option) any later version. |
||||
|
|
||||
|
cpp-ethereum is distributed in the hope that it will be useful, |
||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
GNU General Public License for more details. |
||||
|
|
||||
|
You should have received a copy of the GNU General Public License |
||||
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
/** @file stdafx.cpp
|
||||
|
* @author Tim Hughes <tim@twistedfury.com> |
||||
|
* @date 2014 |
||||
|
*/ |
||||
|
|
@ -0,0 +1,42 @@ |
|||||
|
/*
|
||||
|
This file is part of cpp-ethereum. |
||||
|
|
||||
|
cpp-ethereum is free software: you can redistribute it and/or modify |
||||
|
it under the terms of the GNU General Public License as published by |
||||
|
the Free Software Foundation, either version 3 of the License, or |
||||
|
(at your option) any later version. |
||||
|
|
||||
|
cpp-ethereum is distributed in the hope that it will be useful, |
||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
GNU General Public License for more details. |
||||
|
|
||||
|
You should have received a copy of the GNU General Public License |
||||
|
along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
/** @file stdafx.h
|
||||
|
* @author Tim Hughes <tim@twistedfury.com> |
||||
|
* @date 2014 |
||||
|
*/ |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include <ctime> |
||||
|
#include <chrono> |
||||
|
#include <array> |
||||
|
#include <vector> |
||||
|
#include <map> |
||||
|
#include <unordered_map> |
||||
|
#include <set> |
||||
|
#include <array> |
||||
|
#include <list> |
||||
|
#include <set> |
||||
|
#include <string> |
||||
|
#include <cassert> |
||||
|
#include <sstream> |
||||
|
#include <cstdint> |
||||
|
#include <type_traits> |
||||
|
#include <assert.h> |
||||
|
#include <boost/filesystem.hpp> |
||||
|
#include <boost/multiprecision/cpp_int.hpp> |
||||
|
#include <boost/thread.hpp> |
Loading…
Reference in new issue