Changeset 319 for trunk/src/core


Ignore:
Timestamp:
08/21/14 04:02:01 (11 years ago)
Author:
epyon
Message:
  • created core module and moved all free source files there
  • took the opportunity to update all copyright lines and minor cleanup
  • minor fixes
  • not all examples are up to date
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-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    55// For conditions of distribution and use, see copyright notice in nv.hh
    66
    7 #include "nv/io_event.hh"
    8 
    9 #include <nv/types.hh>
     7#include "nv/core/io_event.hh"
    108
    119using namespace nv;
     
    4442}
    4543
     44/************************************************************************
    4645void nv::register_io_types( type_database* db )
    4746{
     
    138137        db->create_type<system_event>("system_event").fields( system_fields );
    139138}
     139************************************************************************/
  • trunk/src/core/library.cc

    r295 r319  
    1 // Copyright (C) 2012 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
    4 #include "nv/common.hh"
    5 #include "nv/library.hh"
     4#include "nv/core/common.hh"
     5#include "nv/core/library.hh"
    66
    77#if NV_PLATFORM == NV_WINDOWS
     
    3030#endif
    3131
    32 #include "nv/logging.hh"
     32#include "nv/core/logging.hh"
    3333
    3434using namespace nv;
  • trunk/src/core/logger.cc

    r295 r319  
    1 // Copyright (C) 2011 Kornel Kisielewicz
     1// Copyright (C) 2011-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
    44
    5 #include "nv/logger.hh"
    6 
    7 #include "nv/common.hh"
     5#include "nv/core/logger.hh"
     6
     7#include "nv/core/common.hh"
    88#include <iostream>
    99#include <utility>
     
    1212#include <ctime>
    1313#include <cstdio>
    14 #include <nv/exception.hh>
     14#include "nv/core/exception.hh"
    1515#if NV_PLATFORM == NV_WINDOWS
    1616#define WIN32_LEAN_AND_MEAN
  • trunk/src/core/profiler.cc

    r205 r319  
    1 // Copyright (C) 2012-2013 Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
    44
    5 #include "nv/profiler.hh"
     5#include "nv/core/profiler.hh"
    66
    77#include <iomanip>
    88#include <ios>
    9 #include "nv/time.hh"
     9#include "nv/core/time.hh"
    1010
    1111using namespace nv;
  • trunk/src/core/random.cc

    r308 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    55// For conditions of distribution and use, see copyright notice in nv.hh
    66
    7 #include "nv/random.hh"
    8 #include "nv/time.hh"
     7#include "nv/core/random.hh"
     8#include "nv/core/time.hh"
    99
    1010using namespace nv;
  • trunk/src/core/time.cc

    r205 r319  
    1 // Copyright (C) 2011 Kornel Kisielewicz
     1// Copyright (C) 2011-2014 ChaosForge Ltd
    22// This file is part of NV Libraries.
    33// For conditions of distribution and use, see copyright notice in nv.hh
    44
    5 #include "nv/time.hh"
     5#include "nv/core/time.hh"
    66
    7 #include "nv/logging.hh"
     7#include "nv/core/logging.hh"
    88
    99#if NV_COMPILER == NV_MSVC
  • trunk/src/core/uid.cc

    r266 r319  
    1 // Copyright (C) 2012-2013 ChaosForge / Kornel Kisielewicz
     1// Copyright (C) 2012-2014 ChaosForge Ltd
    22// http://chaosforge.org/
    33//
     
    55// For conditions of distribution and use, see copyright notice in nv.hh
    66
    7 #include "nv/uid.hh"
     7#include "nv/core/uid.hh"
    88
    99using namespace nv;
Note: See TracChangeset for help on using the changeset viewer.