File: cat.cc

package info (click to toggle)
libclang-perl 0.09-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 276 kB
  • sloc: perl: 297; cpp: 55; makefile: 10; ansic: 8
file content (9 lines) | stat: -rw-r--r-- 116 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#include "cat.h"

Cat::Cat(char* name) {
  this->_name = name;
}

const char* Cat::name() {
  return this->_name;
}