11 lines
275 B
C++
11 lines
275 B
C++
#ifndef __DETERMINEOPTIMALPULSE_H__
|
|
#define __DETERMINEOPTIMALPULSE_H__
|
|
|
|
#include "Matrix.h"
|
|
namespace Recon {
|
|
Aurora::Matrix determineOptimalPulse(float timeInterval,
|
|
size_t expectedAScanLength);
|
|
|
|
}
|
|
|
|
#endif // __DETERMINEOPTIMALPULSE_H__
|