From 04cdcb0feb369ac4c60e10ccdc139c57e8b52e62 Mon Sep 17 00:00:00 2001 From: Zearin Date: Fri, 7 Oct 2011 10:34:23 -0400 Subject: Removed leftovers from installing with pip. Oops! I noticed there was a bunch of extra crap left over from when I installed this module onto my own system. I thought it wouldn't have modified itself at the time (just the Python module library on my system), but I was wrong. Begone, useless cruft! --- doxygen/html/classcmd2_1_1Statekeeper.html | 284 ----------------------------- 1 file changed, 284 deletions(-) delete mode 100644 doxygen/html/classcmd2_1_1Statekeeper.html (limited to 'doxygen/html/classcmd2_1_1Statekeeper.html') diff --git a/doxygen/html/classcmd2_1_1Statekeeper.html b/doxygen/html/classcmd2_1_1Statekeeper.html deleted file mode 100644 index 8e52272..0000000 --- a/doxygen/html/classcmd2_1_1Statekeeper.html +++ /dev/null @@ -1,284 +0,0 @@ - - - - -Cmd2: cmd2::Statekeeper Class Reference - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
- -
-
cmd2::Statekeeper Class Reference
-
-
- -

List of all members.

- - - - - - - - -

-Public Member Functions

def __init__
def restore
def save

-Public Attributes

 attribs
 obj
-

Detailed Description

-
-

Definition at line 1436 of file cmd2.py.

-

Constructor & Destructor Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def cmd2::Statekeeper::__init__ ( self,
 obj,
 attribs 
)
-
-
- -

Definition at line 1437 of file cmd2.py.

-
01437 
-01438     def __init__(self, obj, attribs):
-01439         self.obj = obj
-01440         self.attribs = attribs
-01441         if self.obj:
-            self.save()
-
-
-
-

Member Function Documentation

- -
-
- - - - - - - - -
def cmd2::Statekeeper::restore ( self)
-
-
- -

Definition at line 1445 of file cmd2.py.

- -

References attribs, and obj.

-
01445 
-01446     def restore(self):
-01447         if self.obj:
-01448             for attrib in self.attribs:
-01449                 setattr(self.obj, attrib, getattr(self, attrib))        
-
-
-
-
- -
-
- - - - - - - - -
def cmd2::Statekeeper::save ( self)
-
-
- -

Definition at line 1442 of file cmd2.py.

- -

References attribs, and obj.

-
01442 
-01443     def save(self):
-01444         for attrib in self.attribs:
-            setattr(self, attrib, getattr(self.obj, attrib))
-
-
-
-

Member Data Documentation

- -
- -
- -

Definition at line 1437 of file cmd2.py.

- -

Referenced by restore(), and save().

- -
-
- -
- -
- -

Definition at line 1437 of file cmd2.py.

- -

Referenced by restore(), and save().

- -
-
-
The documentation for this class was generated from the following file:
    -
  • /Users/amrogers/Developer/Projects/cmd2/cmd2.py
  • -
-
-
- - - - - -- cgit v1.2.1