logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

catchmark - input/output manipulator (rheolef-7.2)

Author

       Pierre  Saramito  <Pierre.Saramito@imag.fr>

Description

       The catchmark input/output manipulator is used for defining labels associated to field(2) when saving
       them on files:

           dout << catchmark('u')   << uh
                << catchmark('w')   << wh
                << catchmark('psi') << psih;

        Then, the read is performed similarly:

           din  >> catchmark('u')   >> uh
                >> catchmark('w')   >> wh
                >> catchmark('psi') >> psih;

        See also diststream(2).

Implementation

       This documentation has been generated from file util/lib/catchmark.h

       class catchmark {
           public:
               catchmark(const std::string& x);
               const std::string& mark() const { return _mark; }
               friend std::istream& operator >> (std::istream& is, const catchmark& m);
               friend std::ostream& operator << (std::ostream& os, const catchmark& m);

       };

Name

       catchmark - input/output manipulator (rheolef-7.2)

See Also