Package Index  Table of Contents

CodeCheck ECS C/C++ to Test Suite - 87.cpp

// 87.    Do not use void* in a public interface.
in a public interface.
class foocl {
public:
  void * foo();  // BAD 87
  
  int foint();
private:
  void * foam();  // GOOD 87
};

Package Index  Table of Contents

CodeCheck Copyright (c) 1988-2005 by Abraxas Software Inc. (R). All rights reserved.