回 帖 发 新 帖 刷新版面

主题:一个关于定义类的问题

下面这段是我没有通过编译的一段代码,各位大侠看看,给点意见,谢谢!


/*!@file mexLog.h a few helpful functions for logging in mex files
 */

// This file is part of the SaliencyToolbox - Copyright (C) 2006
// by Dirk Walther and the California Institute of Technology.
// The Saliency Toolbox is released under the GNU General Public 
// License. See the enclosed COPYRIGHT document for details. 
// For more information about this project see: 
// http://www.saliencytoolbox.net

#ifndef MEXLOG_H_DEFINED
#define MEXLOG_H_DEFINED

#include <streambuf>
#include <iostream>
#include <mex.h>

#define ASSERT(exp) if (!(exp)) mexFatal("ASSERT failed in %s at line %d: " \
                                         #exp,__FILE__,__LINE__);

//! writes an info message to mexPrintf
void mexInfo(const char *fmt,...);

//! writes an error message
void mexError(const char *fmt,...);

//! writes an error message and leaved the mex file
void mexFatal(const char *fmt,...);

//! writes a debug message
void mexDebug(const char *fmt,...);

// ######################################################################
//! This streambuf is used to re-direct cout and cerr
class MexBuf : public std::streambuf
{
 
 public:
     MexBuf():   std::streambuf() 
  { setbuf((char*)0,0); }
  
  virtual int overflow(int c)
  {
    if (c != EOF)
      mexPrintf("%c", c);
    return c;
  }

  virtual std::streamsize xsputn(const char* s, const std::streamsize n)
  {
    std::streamsize c = n;
    while (*s && c--)
      mexPrintf("%c", *s++);
    return n;
  }

};

// ######################################################################
//! This class triggers the redirection of the standard streams at construction
class MexBufInit
{
 public:
  MexBufInit(MexBuf& buf)  
  {
    std::cout.rdbuf(&buf);
    std::cerr.rdbuf(&buf);
  }

  ~MexBufInit() {}

 private:
  MexBufInit(const MexBufInit&);
  MexBufInit& operator=(const MexBufInit&);
};

// ######################################################################
namespace
{
  static MexBuf mexbuf__;
  static MexBufInit mexbufInit__(mexbuf__);
}

#endif

编译时提示:
c:\program files\matlab704\work\saliencytoolbox\mex\mexlog.h(40) : error C2614: 'MexBuf' : illegal member initialization: 'streambuf' is not a base or member
Error executing cl.exe.

回复列表 (共1个回复)

沙发

不明白,我是菜鸟,还是顶一下吧

我来回复

您尚未登录,请登录后再回复。点此登录或注册