git-svn-id: svn://euphorik.ch/pompage@24 02bbb61a-6d21-0410-aba0-cb053bdfd66a
[pompage.git] / src / objet.rb
1
2 class Objet
3 @@compteur = 0
4 def initialize
5 @id = @@compteur + 1
6 @@compteur += 1
7 end
8
9 def getXml
10 #abstrait
11 end
12 end