~ubuntu-branches/ubuntu/utopic/sip-tester/utopic

« back to all changes in this revision

Viewing changes to variables.hpp

  • Committer: Package Import Robot
  • Author(s): Mark Purcell, Paul Belanger, Mark Purcell
  • Date: 2011-11-03 21:56:17 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20111103215617-nnxicj1oto9e8ix5
Tags: 1:3.2-1
[ Paul Belanger ]
* New Upstream Release (Closes: #623915).
* Switch to dpkg-source 3.0 (quilt) format
* Building with PCAP play.
* Switch back to Debhelper.
* debian/patches/spelling-error-in-binary: Fix lintian warning

[ Mark Purcell ]
* Drop pabs from Uploaders: at his request
* fix debhelper-overrides-need-versioned-build-depends
* fix description-synopsis-starts-with-article

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef _CVARIABLE
25
25
#define _CVARIABLE
26
26
 
 
27
#include <string>
 
28
#include <map>
27
29
#include <sys/types.h>
28
30
#include <regex.h>
29
31
 
117
119
  int find(const char *name, bool allocate);
118
120
  char *getName(int i);
119
121
  void validate();
 
122
  void dump();
120
123
private:
121
124
  AllocVariableTable *av_parent;
122
125
  str_int_map  variableMap;