summaryrefslogtreecommitdiff
path: root/2005/i/robert/src/proto/proto.hh
diff options
context:
space:
mode:
Diffstat (limited to '2005/i/robert/src/proto/proto.hh')
-rw-r--r--2005/i/robert/src/proto/proto.hh8
1 files changed, 3 insertions, 5 deletions
diff --git a/2005/i/robert/src/proto/proto.hh b/2005/i/robert/src/proto/proto.hh
index d27619b..701c725 100644
--- a/2005/i/robert/src/proto/proto.hh
+++ b/2005/i/robert/src/proto/proto.hh
@@ -104,13 +104,11 @@ class Proto : public NonCopyable
/// Remplie une frame avec un argument
void newArgFrame(Proto::Frame & frame, char format, int arg);
/// Renvoie la taille necessaire du vecteur args pour un format donné
- static int argsFrameSize(const char *format,int nbArg = 0);
+ static int argsFrameSize(const char *format);
/// Renvoie la taille necessaire du vecteur args pour 1 argument
- static int argSize(char format);
- /// Vérifie le format de la frame
- static bool verifyFrame(const Frame &frame, const char *format, int nbArg);
+// static int argSize(char format);
/// Décode un argument
- static int decodeArg(const Frame & frame, const char *format, int numArg);
+ static void decodeArg(const Frame & frame, const char *format, int &a0, int &a1, int &a2, int &a3);
};
#endif // proto_hh