Folder.h
上传用户:qdkongtiao
上传日期:2022-06-29
资源大小:356k
文件大小:4k
源码类别:

书籍源码

开发平台:

Visual C++

  1. /*
  2.  * This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
  3.  * Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
  4.  * copyright and warranty notices given in that book:
  5.  * 
  6.  * "Copyright (c) 2005 by Objectwrite, Inc., Jose Lajoie, and Barbara E. Moo."
  7.  * 
  8.  * 
  9.  * "The authors and publisher have taken care in the preparation of this book,
  10.  * but make no expressed or implied warranty of any kind and assume no
  11.  * responsibility for errors or omissions. No liability is assumed for
  12.  * incidental or consequential damages in connection with or arising out of the
  13.  * use of the information or programs contained herein."
  14.  * 
  15.  * Permission is granted for this code to be used for educational purposes in
  16.  * association with the book, given proper citation if and when posted or
  17.  * reproduced.Any commercial use of this code requires the explicit written
  18.  * permission of the publisher, Addison-Wesley Professional, a division of
  19.  * Pearson Education, Inc. Send your request for permission, stating clearly
  20.  * what code you would like to use, and in what specific way, to the following
  21.  * address: 
  22.  * 
  23.  *  Pearson Education, Inc.
  24.  *  Rights and Contracts Department
  25.  *  75 Arlington Street, Suite 300
  26.  *  Boston, MA 02216
  27.  *  Fax: (617) 848-7047
  28. */ 
  29. #include <string>
  30. #include <set>
  31. #include <vector>
  32. class Folder;
  33. class Message {
  34.     friend class Folder;
  35. public:
  36.     // folders is initialized to the empty set automatically
  37.     Message(const std::string &str = ""): 
  38.                   contents (str) { }  
  39.     // copy control: we must manage pointers to this Message
  40.     // from the Folders pointed to by folders
  41.     Message(const Message&);
  42.     Message& operator=(const Message&); 
  43.     ~Message();  
  44.     // add/remove this Message from specified Folder's set of messages
  45.     void save(Folder&);   
  46.     void remove(Folder&); 
  47.     std::vector<Folder*> get_folders(); // return list of folders 
  48.                                // in which this message resides
  49.     std::string print_message() { return contents; }
  50.     void debug_print(); // print contents and it's list of Folders, 
  51.                         // printing each Folder as well
  52. private:
  53.     std::string contents;      // actual message text
  54.     std::set<Folder*> folders; // Folders that have this Message
  55.     // Utility functions used by copy constructor, assignment, and destructor:
  56.     // Add this Message to the Folders that point to the parameter
  57.     void put_Msg_in_Folders(const std::set<Folder*>&); 
  58.     // remove this Message from every Folder in folders
  59.     void remove_Msg_from_Folders(); 
  60.     // used by Folder class to add self to this Message's set of Folder's
  61.     void addFldr(Folder *f) { folders.insert(f); }
  62.     void remFldr(Folder *f) { folders.erase(f); }
  63. };
  64. class Folder {
  65.     friend class Message;
  66. public:
  67.     ~Folder(); // remove self from Messages in msgs
  68.     Folder(const Folder&); // add new folder to each Message| in msgs
  69.     Folder& operator=(const Folder&); // delete Folder from lhs messages
  70.                                       // add Folder to rhs messages
  71.     Folder() { } // defaults ok
  72.     void save(Message&); // add this message to folder
  73.     void remove(Message&); // remove this message from this folder
  74.     
  75.     // don't reveal implementation because it's likely to change
  76.     // also better to copy than ref to the internal data structure so
  77.     // have a copy to operate on not the actual contents is safer
  78.     std::vector<Message*> messages(); // return list of messages in this folder
  79.     void debug_print(); // print contents and it's list of Folders, 
  80. private:
  81.     typedef std::set<Message*>::const_iterator Msg_iter;
  82.     std::set<Message*> msgs;  // messages in this folder
  83.     void copy_msgs(const std::set<Message*>&);// add this Folder to each Message
  84.     void empty_msgs();           // remove this Folder from each Message
  85.     void addMsg(Message *m) { msgs.insert(m); }
  86.     void remMsg(Message *m) { msgs.erase(m); }
  87. };