代码搜索:Microphone array

找到约 10,000 项符合「Microphone array」的源代码

代码结果 10,000
www.eeworm.com/read/287078/4031012

h array.h

class Array { public: Array(); ~Array(); int& operator[](int x); const int& operator[](int x) const; protected: static const int kAllocSize = 4; void resize(int newSize); int* mElems;
www.eeworm.com/read/287078/4031014

cpp array.cpp

#include "Array.h" #include using namespace std; // Microsoft Visual Studio requires you to omit the following line. // However, some compilers require it. //const int Array::kAllocSize;
www.eeworm.com/read/285741/4045637

rc array.rc

//Microsoft Visual C++ generated resource script. // #include "resource.h" #define APSTUDIO_READONLY_SYMBOLS ///////////////////////////////////////////////////////////////////////////// // //
www.eeworm.com/read/285741/4045640

dsp array.dsp

# Microsoft Developer Studio Project File - Name="Array" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) App
www.eeworm.com/read/285741/4045642

h array.h

// Array.h : main header file for the ARRAY application // #if !defined(AFX_ARRAY_H__BFE1F3D4_3361_11D4_85B6_3ED14D000000__INCLUDED_) #define AFX_ARRAY_H__BFE1F3D4_3361_11D4_85B6_3ED14D000000__IN
www.eeworm.com/read/285741/4045643

plg array.plg

Build Log --------------------Configuration: Array - Win32 Debug-------------------- Command Lines Creating temporary file "C:\TEMP\RSP5F9.tmp"
www.eeworm.com/read/285741/4045644

clw array.clw

; CLW file contains information for the MFC ClassWizard [General Info] Version=1 LastClass=CAboutDlg LastTemplate=CDialog NewFileInclude1=#include "stdafx.h" NewFileInclude2=#include "Array.h"
www.eeworm.com/read/285741/4045647

cpp array.cpp

// Array.cpp : Defines the class behaviors for the application. // #include "stdafx.h" #include "Array.h" #include "MainFrm.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static
www.eeworm.com/read/285741/4045648

dsw array.dsw

Microsoft Developer Studio Workspace File, Format Version 6.00 # WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! ###############################################################################
www.eeworm.com/read/285741/4045740

cpp array.cpp

/* array.cpp -- Initializing array of class with multiple arguments in the constructor. */ #include #include class CEmployee { public: C