summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2011-03-09 13:20:04 +0000
committerJakob Odersky <jodersky@gmail.com>2011-03-09 13:20:04 +0000
commit57caca6a5f2939b795b9bed7110f5a7c564d1053 (patch)
tree6428e0a449fc1df885bd8f7bd0678f2bfa58462e /src
parent11e69975e0bece6b05b6006b0a427ff820d854b6 (diff)
downloadvhc-57caca6a5f2939b795b9bed7110f5a7c564d1053.tar.gz
vhc-57caca6a5f2939b795b9bed7110f5a7c564d1053.tar.bz2
vhc-57caca6a5f2939b795b9bed7110f5a7c564d1053.zip
Traduit le commentaire de `vhc.cc' en francais.
Diffstat (limited to 'src')
-rw-r--r--src/vhc/Particle.cc17
-rw-r--r--src/vhc/Particle.h27
-rw-r--r--src/vhc/vhc.cc2
3 files changed, 45 insertions, 1 deletions
diff --git a/src/vhc/Particle.cc b/src/vhc/Particle.cc
new file mode 100644
index 0000000..2917449
--- /dev/null
+++ b/src/vhc/Particle.cc
@@ -0,0 +1,17 @@
+/*
+ * Particle.cc
+ *
+ * Created on: Mar 9, 2011
+ * Author: jakob
+ */
+
+#include "Particle.h"
+
+namespace vhc {
+
+
+Particle::~Particle() {
+ // TODO Auto-generated destructor stub
+}
+
+}
diff --git a/src/vhc/Particle.h b/src/vhc/Particle.h
new file mode 100644
index 0000000..678069a
--- /dev/null
+++ b/src/vhc/Particle.h
@@ -0,0 +1,27 @@
+/*
+ * Particle.h
+ *
+ * Created on: Mar 9, 2011
+ * Author: jakob
+ */
+
+#ifndef PARTICLE_H_
+#define PARTICLE_H_
+
+#include "Vector3D.h"
+
+namespace vhc {
+
+class Particle {
+
+private:
+ Vector3D position;
+
+public:
+ Particle(): position(0, 0, 0) {};
+ virtual ~Particle();
+};
+
+}
+
+#endif /* PARTICLE_H_ */
diff --git a/src/vhc/vhc.cc b/src/vhc/vhc.cc
index 2a0b331..52d293c 100644
--- a/src/vhc/vhc.cc
+++ b/src/vhc/vhc.cc
@@ -1,2 +1,2 @@
-/** Namespace containing all classes and objects from the project 'Virtual Hadron Collider'. */
+/** Espace de nom contenant tout code relatif au projet `Virtual Hadron Collider'. */
namespace vhc {};