added .dll and .so to gitignore

This commit is contained in:
Lendemor 2016-05-17 20:37:31 +02:00
parent b40adcc3db
commit 5a7c32a26e
3 changed files with 20 additions and 1 deletions

4
.gitignore vendored
View File

@ -1,2 +1,4 @@
*.user
build*
build*
*.so
*.dll

6
src/simulation.cpp Normal file
View File

@ -0,0 +1,6 @@
#include "simulation.h"
Simulation::Simulation()
{
}

11
src/simulation.h Normal file
View File

@ -0,0 +1,11 @@
#ifndef SIMULATION_H
#define SIMULATION_H
class Simulation
{
public:
Simulation();
};
#endif // SIMULATION_H