Changeset 319 for trunk/src/core
- Timestamp:
- 08/21/14 04:02:01 (11 years ago)
- Location:
- trunk/src/core
- Files:
-
- 1 added
- 7 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/io_event.cc
r304 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 6 7 #include "nv/io_event.hh" 8 9 #include <nv/types.hh> 7 #include "nv/core/io_event.hh" 10 8 11 9 using namespace nv; … … 44 42 } 45 43 44 /************************************************************************ 46 45 void nv::register_io_types( type_database* db ) 47 46 { … … 138 137 db->create_type<system_event>("system_event").fields( system_fields ); 139 138 } 139 ************************************************************************/ -
trunk/src/core/library.cc
r295 r319 1 // Copyright (C) 2012 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 #include "nv/co mmon.hh"5 #include "nv/ library.hh"4 #include "nv/core/common.hh" 5 #include "nv/core/library.hh" 6 6 7 7 #if NV_PLATFORM == NV_WINDOWS … … 30 30 #endif 31 31 32 #include "nv/ logging.hh"32 #include "nv/core/logging.hh" 33 33 34 34 using namespace nv; -
trunk/src/core/logger.cc
r295 r319 1 // Copyright (C) 2011 Kornel Kisielewicz1 // Copyright (C) 2011-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 4 5 #include "nv/ logger.hh"6 7 #include "nv/co mmon.hh"5 #include "nv/core/logger.hh" 6 7 #include "nv/core/common.hh" 8 8 #include <iostream> 9 9 #include <utility> … … 12 12 #include <ctime> 13 13 #include <cstdio> 14 #include <nv/exception.hh>14 #include "nv/core/exception.hh" 15 15 #if NV_PLATFORM == NV_WINDOWS 16 16 #define WIN32_LEAN_AND_MEAN -
trunk/src/core/profiler.cc
r205 r319 1 // Copyright (C) 2012-201 3 Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 4 5 #include "nv/ profiler.hh"5 #include "nv/core/profiler.hh" 6 6 7 7 #include <iomanip> 8 8 #include <ios> 9 #include "nv/ time.hh"9 #include "nv/core/time.hh" 10 10 11 11 using namespace nv; -
trunk/src/core/random.cc
r308 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 6 7 #include "nv/ random.hh"8 #include "nv/ time.hh"7 #include "nv/core/random.hh" 8 #include "nv/core/time.hh" 9 9 10 10 using namespace nv; -
trunk/src/core/time.cc
r205 r319 1 // Copyright (C) 2011 Kornel Kisielewicz1 // Copyright (C) 2011-2014 ChaosForge Ltd 2 2 // This file is part of NV Libraries. 3 3 // For conditions of distribution and use, see copyright notice in nv.hh 4 4 5 #include "nv/ time.hh"5 #include "nv/core/time.hh" 6 6 7 #include "nv/ logging.hh"7 #include "nv/core/logging.hh" 8 8 9 9 #if NV_COMPILER == NV_MSVC -
trunk/src/core/uid.cc
r266 r319 1 // Copyright (C) 2012-201 3 ChaosForge / Kornel Kisielewicz1 // Copyright (C) 2012-2014 ChaosForge Ltd 2 2 // http://chaosforge.org/ 3 3 // … … 5 5 // For conditions of distribution and use, see copyright notice in nv.hh 6 6 7 #include "nv/ uid.hh"7 #include "nv/core/uid.hh" 8 8 9 9 using namespace nv;
Note: See TracChangeset
for help on using the changeset viewer.