Source code for GLXCurses.TextTagTable

#!/usr/bin/env python
# -*- coding: utf-8 -*-

# It script it publish under GNU GENERAL PUBLIC LICENSE
# http://www.gnu.org/licenses/gpl-3.0.en.html
# Author: the Galaxie Curses Team, all rights reserved

import GLXCurses


[docs]class TextTagTable(GLXCurses.Object): def __init__(self): GLXCurses.Object.__init__(self) self.table = None
[docs] def new(self): """ Creates a new GLXCurses.TextTagTable. The table contains no tags by default. :return: a new GLXCurses.TextTagTable :rtype: GLXCurses.TextTagTable """ self.__init__() return self
[docs] def add(self): pass
[docs] def remove(self): pass
[docs] def lookup(self): pass
[docs] def foreach(self): pass
[docs] def get_size(self): pass