type access_type_matcher_t
source code
    object --+    
             |    
matcher_base_t --+
                 |
                access_type_matcher_t
Instance of this class will match declaration by its access type: 
  public, private or protected. If declarations does not have access type, 
  for example free function, then False will be returned.
| 
    Parameters:
        access_type(ACCESS_TYPES defines few consts for your 
          convinience. Any way you can pass public, private or protected as
          argument to this function) - declaration access typeOverrides:
        matcher_base_t.__init__
     |