Skip to content

Commit

Permalink
[Janitor mode] Fix tabs
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@18530 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Dec 20, 2013
1 parent 20b03c4 commit 44d2365
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions Compiler/Template/CodegenCpp.tpl
Expand Up @@ -51,30 +51,30 @@ match simCode
case SIMCODE(modelInfo=MODELINFO(__), makefileParams=MAKEFILE_PARAMS(__)) then
<<

#ifndef BOOST_ALL_DYN_LINK
#define BOOST_ALL_DYN_LINK
#endif
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <string>
#include <vector>
#include <map>
using std::string;
using std::vector;
using std::map;
namespace ublas = boost::numeric::ublas;
#include <SimCoreFactory/Policies/FactoryConfig.h>
#include <SimController/ISimController.h>
//#include "OMCpp<%lastIdentOfPath(modelInfo.name)%>.h"
#if defined(_MSC_VER) || defined(__MINGW32__)
#include <tchar.h>
int _tmain(int argc, const _TCHAR* argv[])
#else
int main(int argc, const char* argv[])
#endif
{
#ifndef BOOST_ALL_DYN_LINK
#define BOOST_ALL_DYN_LINK
#endif
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <string>
#include <vector>
#include <map>
using std::string;
using std::vector;
using std::map;
namespace ublas = boost::numeric::ublas;
#include <SimCoreFactory/Policies/FactoryConfig.h>
#include <SimController/ISimController.h>
//#include "OMCpp<%lastIdentOfPath(modelInfo.name)%>.h"
#if defined(_MSC_VER) || defined(__MINGW32__)
#include <tchar.h>
int _tmain(int argc, const _TCHAR* argv[])
#else
int main(int argc, const char* argv[])
#endif
{
try
{
boost::shared_ptr<OMCFactory> _factory = boost::shared_ptr<OMCFactory>(new OMCFactory());
Expand Down

0 comments on commit 44d2365

Please sign in to comment.