⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 soundfile.h

📁 一个语言识别引擎
💻 H
字号:
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-

/*
 * Copyright (C) 2006 Paul Fitzpatrick
 * CopyPolicy: Released under the terms of the GNU GPL v2.0.
 *
 */


//
// $Id: SoundFile.h,v 1.2 2006/10/24 19:51:03 eshuy Exp $
//
//

#ifndef YARP2SoundFile_INC
#define YARP2SoundFile_INC

#include <yarp/sig/Sound.h>

namespace yarp {
    namespace sig{
        /**
         * \ingroup sig_class
         *
         * Sound file operations.
         */
        namespace file {
            bool read(Sound& dest, const char *src);
            bool write(const Sound& src, const char *dest);
        }
    }
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -