a
doum
昨天 307960b07d8cb122d9de0c8267b8cb7a63cfc605
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef SASS_BASE64VLQ_H
#define SASS_BASE64VLQ_H
 
#include <string>
 
namespace Sass {
 
  class Base64VLQ {
 
  public:
 
    std::string encode(const int number) const;
 
  private:
 
    char base64_encode(const int number) const;
 
    int to_vlq_signed(const int number) const;
 
    static const char* CHARACTERS;
 
    static const int VLQ_BASE_SHIFT;
    static const int VLQ_BASE;
    static const int VLQ_BASE_MASK;
    static const int VLQ_CONTINUATION_BIT;
  };
 
}
 
#endif