~marcustomlinson/interpp/trunk

« back to all changes in this revision

Viewing changes to interpp.cpp

  • Committer: Marcus Tomlinson
  • Date: 2014-01-17 13:27:10 UTC
  • Revision ID: marcus.tomlinson@canonical.com-20140117132710-rmm04ef5sdfcrii3
Initial commit to bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/************************************************************************
 
2
Interpp - Light-Weight C++ Scripting Interpretor
 
3
Copyright (c) 2012-2013 Marcus Tomlinson
 
4
 
 
5
This file is part of Interpp.
 
6
 
 
7
The BSD 2-Clause License:
 
8
Redistribution and use in source and binary forms, with or without
 
9
modification, are permitted provided that the following conditions are
 
10
met:
 
11
 
 
12
Redistributions of source code must retain the above copyright notice,
 
13
this list of conditions and the following disclaimer.
 
14
 
 
15
Redistributions in binary form must reproduce the above copyright notice,
 
16
this list of conditions and the following disclaimer in the documentation
 
17
and/or other materials provided with the distribution.
 
18
 
 
19
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
 
20
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
21
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
22
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 
23
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 
24
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
25
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
26
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
 
27
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 
28
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
29
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
30
************************************************************************/
 
31
 
 
32
#include "interpp.h"
 
33
 
 
34
//=================================================================================================
 
35
 
 
36
namespace Interpp
 
37
{
 
38
  std::map< std::string, std::pair< std::string, void* > > _InterppRegistry::_interppObjects;
 
39
  std::map< std::string, std::pair< std::string, void* > >::const_iterator _InterppRegistry::_interppObjectsIt;
 
40
 
 
41
  std::map< std::string, _interppMethod > _InterppRegistry::_interppMethods;
 
42
  std::map< std::string, _interppMethod >::const_iterator _InterppRegistry::_interppMethodsIt;
 
43
}
 
44
 
 
45
//=================================================================================================
 
 
b'\\ No newline at end of file'