File: cpp_compress.hh

package info (click to toggle)
fparserc%2B%2B 4.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 6,132 kB
  • sloc: cpp: 23,297; pascal: 7,097; yacc: 1,650; ansic: 973; makefile: 307; php: 53; sh: 28
file content (10 lines) | stat: -rw-r--r-- 283 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#include <string>

class CPPcompressor
{
public:
    /* Compress the given C++ source code. Warning: Function not re-entrant. */
    std::string Compress(const std::string& input);
    std::string Compress(const std::string& input,
        const std::string& macro_prefix_chars);
};